google.golang.org/grpc.dialOptions.copts (field)
55 uses
google.golang.org/grpc (current package)
balancer_wrapper.go#L90: DialCreds: cc.dopts.copts.TransportCredentials,
balancer_wrapper.go#L91: CredsBundle: cc.dopts.copts.CredsBundle,
balancer_wrapper.go#L92: Dialer: cc.dopts.copts.Dialer,
balancer_wrapper.go#L94: CustomUserAgent: cc.dopts.copts.UserAgent,
clientconn.go#L198: cc.keepaliveParams = cc.dopts.copts.KeepaliveParams
clientconn.go#L213: cc.metricsRecorderList = stats.NewMetricsRecorderList(cc.dopts.copts.StatsHandlers)
clientconn.go#L300: } else if cc.dopts.copts.FailOnNonTempDialError && s == connectivity.TransientFailure {
clientconn.go#L426: if cc.dopts.copts.TransportCredentials == nil && cc.dopts.copts.CredsBundle == nil {
clientconn.go#L429: if cc.dopts.copts.TransportCredentials != nil && cc.dopts.copts.CredsBundle != nil {
clientconn.go#L432: if cc.dopts.copts.CredsBundle != nil && cc.dopts.copts.CredsBundle.TransportCredentials() == nil {
clientconn.go#L435: transportCreds := cc.dopts.copts.TransportCredentials
clientconn.go#L437: transportCreds = cc.dopts.copts.CredsBundle.TransportCredentials()
clientconn.go#L440: for _, cd := range cc.dopts.copts.PerRPCCredentials {
clientconn.go#L1237: v := 2 * ac.dopts.copts.KeepaliveParams.Time
clientconn.go#L1336: ac.dopts.copts.KeepaliveParams = ac.cc.keepaliveParams
clientconn.go#L1339: copts := ac.dopts.copts
clientconn.go#L1811: if creds := dopts.copts.TransportCredentials; creds != nil && creds.Info().ServerName != "" {
dialoptions.go#L84: copts transport.ConnectOptions
dialoptions.go#L182: o.copts.SharedWriteBuffer = val
dialoptions.go#L194: o.copts.WriteBufferSize = s
dialoptions.go#L206: o.copts.ReadBufferSize = s
dialoptions.go#L215: o.copts.InitialWindowSize = s
dialoptions.go#L216: o.copts.StaticWindowSize = true
dialoptions.go#L225: o.copts.InitialConnWindowSize = s
dialoptions.go#L226: o.copts.StaticWindowSize = true
dialoptions.go#L234: o.copts.InitialWindowSize = s
dialoptions.go#L235: o.copts.StaticWindowSize = true
dialoptions.go#L244: o.copts.InitialConnWindowSize = s
dialoptions.go#L245: o.copts.StaticWindowSize = true
dialoptions.go#L390: o.copts.TransportCredentials = insecure.NewCredentials()
dialoptions.go#L427: o.copts.TransportCredentials = creds
dialoptions.go#L435: o.copts.PerRPCCredentials = append(o.copts.PerRPCCredentials, creds)
dialoptions.go#L449: o.copts.CredsBundle = b
dialoptions.go#L486: o.copts.Dialer = f
dialoptions.go#L517: o.copts.StatsHandlers = append(o.copts.StatsHandlers, h)
dialoptions.go#L545: o.copts.FailOnNonTempDialError = f
dialoptions.go#L553: o.copts.UserAgent = s + " " + grpcUA
dialoptions.go#L567: o.copts.KeepaliveParams = kp
dialoptions.go#L681: do.copts.MaxHeaderListSize = &o.MaxHeaderListSize
dialoptions.go#L707: copts: transport.ConnectOptions{
dialoptions.go#L795: o.copts.BufferPool = bufferPool
resolver_wrapper.go#L76: DialCreds: ccr.cc.dopts.copts.TransportCredentials,
resolver_wrapper.go#L77: CredsBundle: ccr.cc.dopts.copts.CredsBundle,
resolver_wrapper.go#L78: Dialer: ccr.cc.dopts.copts.Dialer,
resolver_wrapper.go#L88: if ccr.cc.dopts.copts.Dialer != nil || !ccr.cc.dopts.useProxy {
stream.go#L421: shs := cs.cc.dopts.copts.StatsHandlers
stream.go#L532: a.parser = &parser{r: s, bufferPool: a.cs.cc.dopts.copts.BufferPool}
stream.go#L919: hdr, data, payload, pf, err := prepareMsg(m, cs.codec, cs.compressorV0, cs.compressorV1, cs.cc.dopts.copts.BufferPool)
stream.go#L1327: as.parser = &parser{r: s, bufferPool: ac.dopts.copts.BufferPool}
stream.go#L1426: hdr, data, payload, pf, err := prepareMsg(m, as.codec, as.sendCompressorV0, as.sendCompressorV1, as.ac.dopts.copts.BufferPool)